Changeset 551 for beatfish/trunk
- Timestamp:
- 03/21/08 05:45:32 (10 months ago)
- Files:
-
- beatfish/trunk/config.h.in (modified) (2 diffs)
- beatfish/trunk/configure.ac (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
beatfish/trunk/config.h.in
r331 r551 122 122 #undef PACKAGE_BUGREPORT 123 123 124 /* Set the data dir for MetaDrums*/124 /* Set the data dir for Beatfish */ 125 125 #undef PACKAGE_DATA_DIR 126 126 … … 139 139 /* If using the C implementation of alloca, define if you know the 140 140 direction of stack growth for your system; otherwise it will be 141 automatically deduced at run -time.141 automatically deduced at runtime. 142 142 STACK_DIRECTION > 0 => grows toward higher addresses 143 143 STACK_DIRECTION < 0 => grows toward lower addresses beatfish/trunk/configure.ac
r346 r551 106 106 107 107 dnl Set PACKAGE_DATA_DIR in config.h. 108 if test "x${datadir}" = 'x${prefix}/share'; then 109 if test "x${prefix}" = "xNONE"; then 110 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, 111 "${ac_default_prefix}/share/${PACKAGE}", 112 [Set the data dir for MetaDrums]) 113 else 114 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}", 115 [Set the data dir for MetaDrums]) 116 fi 108 PACKAGE_DATA_DIR="${datadir}" 109 if test "x${prefix}" = "xNONE"; then 110 PACKAGE_DATA_DIR="${ac_default_prefix}/share/${PACKAGE}" 117 111 else 118 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datadir}/${PACKAGE}", 119 [Set the data dir for MetaDrums]) 112 PACKAGE_DATA_DIR="${prefix}/share/${PACKAGE}" 120 113 fi 121 114 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${PACKAGE_DATA_DIR}", 115 [Set the data dir for Beatfish]) 122 116 123 117 AC_OUTPUT([
