mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 18:43:02 +01:00
Cleanup by Dimitry Sibiryakov.
This commit is contained in:
parent
6b4db55335
commit
b5144c480d
10
configure.in
10
configure.in
@ -1,4 +1,4 @@
|
|||||||
dnl $Id: configure.in,v 1.95 2002-11-21 11:54:34 kkuznetsov Exp $
|
dnl $Id: configure.in,v 1.96 2002-11-22 14:11:28 dimitr Exp $
|
||||||
|
|
||||||
dnl ############################# INITIALISATION ###############################
|
dnl ############################# INITIALISATION ###############################
|
||||||
|
|
||||||
@ -273,7 +273,7 @@ AC_CHECK_FUNCS(gettimeofday)
|
|||||||
if test "$ac_cv_func_gettimeofday" = "yes"; then
|
if test "$ac_cv_func_gettimeofday" = "yes"; then
|
||||||
dnl EKU: SINIX-Z has no prototype for gettimeofday() so the following test
|
dnl EKU: SINIX-Z has no prototype for gettimeofday() so the following test
|
||||||
dnl will always succeed, which is wrong.
|
dnl will always succeed, which is wrong.
|
||||||
case $PLATFORM in
|
case "$PLATFORM" in
|
||||||
SINIX-Z)
|
SINIX-Z)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
@ -385,7 +385,7 @@ dnl volunters are welcome!
|
|||||||
|
|
||||||
|
|
||||||
dnl EKU: Add any platform specific tests below
|
dnl EKU: Add any platform specific tests below
|
||||||
case $PLATFORM in
|
case "$PLATFORM" in
|
||||||
LINUX)
|
LINUX)
|
||||||
dnl MOD: Check for /proc/self/exe mainly used on linux systems
|
dnl MOD: Check for /proc/self/exe mainly used on linux systems
|
||||||
dnl this is used to determine path to executable file.
|
dnl this is used to determine path to executable file.
|
||||||
@ -597,7 +597,7 @@ MAKE_SRC_DIR=builds/posix
|
|||||||
|
|
||||||
dnl EKU: handle platform specific installation and packaging
|
dnl EKU: handle platform specific installation and packaging
|
||||||
|
|
||||||
case $PLATFORM in
|
case "$PLATFORM" in
|
||||||
LINUX)
|
LINUX)
|
||||||
mkdir -p gen/install/scripts
|
mkdir -p gen/install/scripts
|
||||||
mkdir -p gen/install/misc
|
mkdir -p gen/install/misc
|
||||||
@ -705,7 +705,7 @@ esac
|
|||||||
echo "Service name : $FB_SERVICE_NAME"
|
echo "Service name : $FB_SERVICE_NAME"
|
||||||
echo "Service port : $FB_SERVICE_PORT"
|
echo "Service port : $FB_SERVICE_PORT"
|
||||||
|
|
||||||
case $PLATFORM in
|
case "$PLATFORM" in
|
||||||
win32) echo " Pipe name : $FB_PIPE_NAME";;
|
win32) echo " Pipe name : $FB_PIPE_NAME";;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* Mark O'Donohue <mark.odonohue@ludwig.edu.au>
|
* Mark O'Donohue <mark.odonohue@ludwig.edu.au>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* $Id: fb_types.h,v 1.8 2002-09-11 11:30:44 eku Exp $
|
* $Id: fb_types.h,v 1.9 2002-11-22 14:09:36 dimitr Exp $
|
||||||
*
|
*
|
||||||
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "OS/2" port
|
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "OS/2" port
|
||||||
*
|
*
|
||||||
@ -43,8 +43,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if (defined(_MSC_VER) && defined(_WIN32)) || \
|
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
|
||||||
(defined(__BORLANDC__) && defined(__WIN32__))
|
|
||||||
# define GDS_EXPORT __stdcall
|
# define GDS_EXPORT __stdcall
|
||||||
#else
|
#else
|
||||||
# define GDS_EXPORT
|
# define GDS_EXPORT
|
||||||
|
Loading…
Reference in New Issue
Block a user