IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11250


Ignore:
Timestamp:
Jan 23, 2007, 3:04:24 PM (19 years ago)
Author:
magnier
Message:

adding psmodules errors (PM_ERR_...)

Location:
trunk/psModules
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/configure.ac

    r10876 r11250  
    9999AC_CHECK_PROG([doxygen], [doxygen], [true], [false])
    100100AM_CONDITIONAL(DOXYGEN, test x$doxygen = xtrue)
     101
     102dnl ------------------------------------------------------------
     103
     104AC_PATH_PROG([ERRORCODES], [psParseErrorCodes], [missing])
     105if test "$ERRORCODES" = "missing" ; then
     106  AC_MSG_ERROR([psParseErrorCodes is required])
     107fi
    101108
    102109dnl ------------------ kapa,libkapa options -------------------------
  • trunk/psModules/src/config/Makefile.am

    r10965 r11250  
    77    pmConfigRecipes.c \
    88    pmConfigCamera.c \
    9     pmVersion.c
     9    pmVersion.c \
     10    pmErrorCodes.c
    1011
    1112pkginclude_HEADERS = \
     
    1314    pmConfigRecipes.h \
    1415    pmConfigCamera.h \
    15     pmVersion.h
     16    pmVersion.h \
     17    pmErrorCodes.h
    1618
    1719CLEANFILES = *~
     20
     21# Error codes.
     22BUILT_SOURCES = pmErrorCodes.h pmErrorCodes.c
     23CLEANFILES = pmErrorCodes.h pmErrorCodes.c
     24
     25pmErrorCodes.h : pmErrorCodes.dat pmErrorCodes.h.in
     26        $(ERRORCODES) --data=pmErrorCodes.dat --outdir=. pmErrorCodes.h
     27
     28pmErrorCodes.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.