all repos — openbox @ 33d2ceccbe41a2abdb4b145ba56138b55e5d4973

openbox fork - make it a bit more like ryudo

s/__openbox_version/OPENBOX_VERSION
Dana Jansens danakj@orodu.net
commit

33d2ceccbe41a2abdb4b145ba56138b55e5d4973

parent

989db59a065c3c9db1296289a857fa38dbf27960

3 files changed, 4 insertions(+), 4 deletions(-)

jump to
M src/main.ccsrc/main.cc

@@ -69,7 +69,7 @@ " -rc <string>\t\t\tuse alternate resource file.\n"

" -menu <string>\t\tuse alternate menu file.\n" " -version\t\t\tdisplay version and exit.\n" " -help\t\t\t\tdisplay this help text and exit.\n\n"), - __openbox_version); + OPENBOX_VERSION); // some people have requested that we print out compile options // as well

@@ -172,7 +172,7 @@ // print current version string

printf("Openbox %s : (c) 2002 - 2002 Ben Jansens\n" " 2001 - 2002 Sean 'Shaleh' Perry\n" " 1997 - 2000, 2002 Brad Hughes\n\n", - __openbox_version); + OPENBOX_VERSION); ::exit(0); } else if (! strcmp(argv[i], "-help")) {
M util/epist/main.ccutil/epist/main.cc

@@ -81,7 +81,7 @@ } else if (argvi == "-help") {

usage(); } else if (argvi == "-version") { fprintf(stderr, "epist - shipped with openbox %s\n", - __openbox_version); + OPENBOX_VERSION); exit(0); } else
M version.h.inversion.h.in

@@ -1,1 +1,1 @@

-#define __openbox_version "@VERSION@" +#define OPENBOX_VERSION "@VERSION@"