Changeset 2562
- Timestamp:
- Jul 18, 2008, 11:28:02 AM (15 years ago)
- Location:
- zzuf/trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/Makefile.am
r2527 r2562 4 4 DIST_SUBDIRS = $(SUBDIRS) 5 5 6 EXTRA_DIST = bootstrap AUTHORS m4/cflags.m4 6 EXTRA_DIST = bootstrap AUTHORS m4/cflags.m4 m4/func.m4 7 7 ACLOCAL_AMFLAGS = -I m4 8 8 AUTOMAKE_OPTIONS = foreign dist-bzip2 -
zzuf/trunk/configure.ac
r2559 r2562 13 13 14 14 AC_C_INLINE 15 AC_C_FUNC 15 16 16 17 # Optimizations -
zzuf/trunk/msvc/config.h
r2534 r2562 42 42 #define inline /* undefined */ 43 43 #define __attribute__(x) /* undefined */ 44 #define __func__ __FUNCTION__ 44 45 45 46 #define STDOUT_FILENO 1 -
zzuf/trunk/src/lib-load.h
r1701 r2562 16 16 * lib-load.h: preload library functions 17 17 */ 18 19 /* The __func__ macro to get the current function name */20 #if __STDC_VERSION__ < 199901L21 # if __GNUC__ >= 222 # define __func__ __FUNCTION__23 # else24 # define __func__ "<?>"25 # endif26 #endif27 18 28 19 /* Symbol loading stuff */
Note: See TracChangeset
for help on using the changeset viewer.