8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 09:20:39 +01:00

We're going to support win32 builds made with mingw.

This commit is contained in:
dimitr 2002-11-06 12:58:45 +00:00
parent 88449be4b9
commit 6d6ba677a0
2 changed files with 23 additions and 1 deletions

20
builds/posix/prefix.mingw Normal file
View File

@ -0,0 +1,20 @@
# The contents of this file are subject to the Interbase Public
# License Version 1.0 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy
# of the License at http://www.Inprise.com/IPL.html
#
# Software distributed under the License is distributed on an
# "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
# or implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code was created by Inprise Corporation
# and its predecessors. Portions created by Inprise Corporation are
# Copyright (C) Inprise Corporation.
#
# All Rights Reserved.
# Contributor(s): ______________________________________.
# Start of file prefix.win32: $(VERSION) $(PLATFORM)
PROD_FLAGS=-O2 -mno-cygwin
DEV_FLAGS=-ggdb -mno-cygwin -DDEBUG -DDEBUG_GDS_ALLOC

View File

@ -1,4 +1,4 @@
dnl $Id: configure.in,v 1.64 2002-11-06 12:36:05 eku Exp $
dnl $Id: configure.in,v 1.65 2002-11-06 12:58:45 dimitr Exp $
dnl ############################# INITIALISATION ###############################
@ -36,6 +36,8 @@ case "$target" in
i386-pc-solaris*) MAKEFILE_PREFIX=solx86 ; PLATFORM=solx86 ; AC_DEFINE(solx86) ;;
sparc-sun-solaris*) MAKEFILE_PREFIX=solaris ; PLATFORM=SOLARIS ; AC_DEFINE(SOLARIS) ;;
i*-sni-sysv4) MAKEFILE_PREFIX=sinixz ; PLATFORM="SINIX-Z" ; AC_DEFINE(SINIXZ) ;;
*-*-mingw*) MAKEFILE_PREFIX=mingw ; PLATFORM=win32 ; AC_DEFINE(WIN_NT) ;;
esac
AC_SUBST(PLATFORM)