Changeset 11250
- Timestamp:
- Jan 23, 2007, 3:04:24 PM (19 years ago)
- Location:
- trunk/psModules
- Files:
-
- 3 added
- 2 edited
-
configure.ac (modified) (1 diff)
-
src/config/Makefile.am (modified) (2 diffs)
-
src/config/pmErrorCodes.c.in (added)
-
src/config/pmErrorCodes.dat (added)
-
src/config/pmErrorCodes.h.in (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/configure.ac
r10876 r11250 99 99 AC_CHECK_PROG([doxygen], [doxygen], [true], [false]) 100 100 AM_CONDITIONAL(DOXYGEN, test x$doxygen = xtrue) 101 102 dnl ------------------------------------------------------------ 103 104 AC_PATH_PROG([ERRORCODES], [psParseErrorCodes], [missing]) 105 if test "$ERRORCODES" = "missing" ; then 106 AC_MSG_ERROR([psParseErrorCodes is required]) 107 fi 101 108 102 109 dnl ------------------ kapa,libkapa options ------------------------- -
trunk/psModules/src/config/Makefile.am
r10965 r11250 7 7 pmConfigRecipes.c \ 8 8 pmConfigCamera.c \ 9 pmVersion.c 9 pmVersion.c \ 10 pmErrorCodes.c 10 11 11 12 pkginclude_HEADERS = \ … … 13 14 pmConfigRecipes.h \ 14 15 pmConfigCamera.h \ 15 pmVersion.h 16 pmVersion.h \ 17 pmErrorCodes.h 16 18 17 19 CLEANFILES = *~ 20 21 # Error codes. 22 BUILT_SOURCES = pmErrorCodes.h pmErrorCodes.c 23 CLEANFILES = pmErrorCodes.h pmErrorCodes.c 24 25 pmErrorCodes.h : pmErrorCodes.dat pmErrorCodes.h.in 26 $(ERRORCODES) --data=pmErrorCodes.dat --outdir=. pmErrorCodes.h 27 28 pmErrorCodes.c : pmErrorCodes.dat pmErrorCodes.c.in pmErrorCodes.h 29 $(ERRORCODES) --data=pmErrorCodes.dat --outdir=. pmErrorCodes.c
Note:
See TracChangeset
for help on using the changeset viewer.
