diff options
author | Paul Traina <pst@FreeBSD.org> | 1995-01-06 09:56:43 +0000 |
---|---|---|
committer | Paul Traina <pst@FreeBSD.org> | 1995-01-06 09:56:43 +0000 |
commit | fb711d8e0fb803dae8d7fa8eb03c7503336c343a (patch) | |
tree | c3fedba85450db5aa7a56e09b5ebc38f9a883dcf /audio/gsm/files | |
parent | 64c64e413e8d609ff4a7190ada6d01a7973b83fb (diff) | |
download | ports-fb711d8e0fb803dae8d7fa8eb03c7503336c343a.tar.gz ports-fb711d8e0fb803dae8d7fa8eb03c7503336c343a.zip |
Notes
Diffstat (limited to 'audio/gsm/files')
-rw-r--r-- | audio/gsm/files/patch-aa | 21 | ||||
-rw-r--r-- | audio/gsm/files/patch-ab | 36 |
2 files changed, 57 insertions, 0 deletions
diff --git a/audio/gsm/files/patch-aa b/audio/gsm/files/patch-aa new file mode 100644 index 000000000000..244eb8ef13dc --- /dev/null +++ b/audio/gsm/files/patch-aa @@ -0,0 +1,21 @@ +*** inc/config.h Fri Jan 6 01:35:41 1995 +--- inc/config.h Fri Jan 6 01:35:51 1995 +*************** +*** 25,32 **** + /*efine HAS_STRINGS_H 1 /* /usr/include/strings.h */ + + #define HAS_UNISTD_H 1 /* /usr/include/unistd.h */ +! #define HAS_UTIME 1 /* POSIX utime(path, times) */ +! /*efine HAS_UTIMES 1 /* use utimes() syscall instead */ + #define HAS_UTIME_H 1 /* UTIME header file */ + /*efine HAS_UTIMBUF 1 /* struct utimbuf */ + /*efine HAS_UTIMEUSEC 1 /* microseconds in utimbuf? */ +--- 25,32 ---- + /*efine HAS_STRINGS_H 1 /* /usr/include/strings.h */ + + #define HAS_UNISTD_H 1 /* /usr/include/unistd.h */ +! /*efine HAS_UTIME 1 /* POSIX utime(path, times) */ +! #define HAS_UTIMES 1 /* use utimes() syscall instead */ + #define HAS_UTIME_H 1 /* UTIME header file */ + /*efine HAS_UTIMBUF 1 /* struct utimbuf */ + /*efine HAS_UTIMEUSEC 1 /* microseconds in utimbuf? */ diff --git a/audio/gsm/files/patch-ab b/audio/gsm/files/patch-ab new file mode 100644 index 000000000000..cc8ae99f74f8 --- /dev/null +++ b/audio/gsm/files/patch-ab @@ -0,0 +1,36 @@ +*** Makefile Tue May 10 14:39:31 1994 +--- Makefile Fri Jan 6 01:42:47 1995 +*************** +*** 60,66 **** + # Leave INSTALL_ROOT empty (or just don't execute "make install") to + # not install gsm and toast outside of this directory. + +! INSTALL_ROOT = + + # Where do you want to install the gsm library, header file, and manpages? + # +--- 60,66 ---- + # Leave INSTALL_ROOT empty (or just don't execute "make install") to + # not install gsm and toast outside of this directory. + +! INSTALL_ROOT = ${PREFIX} + + # Where do you want to install the gsm library, header file, and manpages? + # +*************** +*** 69,75 **** + + GSM_INSTALL_ROOT = $(INSTALL_ROOT) + GSM_INSTALL_LIB = $(GSM_INSTALL_ROOT)/lib +! GSM_INSTALL_INC = $(GSM_INSTALL_ROOT)/inc + GSM_INSTALL_MAN = $(GSM_INSTALL_ROOT)/man/man3 + + +--- 69,75 ---- + + GSM_INSTALL_ROOT = $(INSTALL_ROOT) + GSM_INSTALL_LIB = $(GSM_INSTALL_ROOT)/lib +! GSM_INSTALL_INC = $(GSM_INSTALL_ROOT)/include + GSM_INSTALL_MAN = $(GSM_INSTALL_ROOT)/man/man3 + + |