*** empty log message ***

This commit is contained in:
hyung-hwan 2006-11-19 08:01:45 +00:00
parent 80014e7544
commit 48b9c4a825
4 changed files with 10 additions and 8 deletions

6
ase/configure vendored
View File

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# From configure.ac Revision: 1.70 . # From configure.ac Revision: 1.71 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for ase deb-0.1.0. # Generated by GNU Autoconf 2.59 for ase deb-0.1.0.
# #
@ -1314,7 +1314,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_config_headers="$ac_config_headers config.h" ac_config_headers="$ac_config_headers conf_unx.h"
# Checks for programs. # Checks for programs.
@ -13471,7 +13471,7 @@ do
"test/awk/makefile" ) CONFIG_FILES="$CONFIG_FILES test/awk/makefile" ;; "test/awk/makefile" ) CONFIG_FILES="$CONFIG_FILES test/awk/makefile" ;;
"test/lsp/makefile" ) CONFIG_FILES="$CONFIG_FILES test/lsp/makefile" ;; "test/lsp/makefile" ) CONFIG_FILES="$CONFIG_FILES test/lsp/makefile" ;;
"test/stx/makefile" ) CONFIG_FILES="$CONFIG_FILES test/stx/makefile" ;; "test/stx/makefile" ) CONFIG_FILES="$CONFIG_FILES test/stx/makefile" ;;
"config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "conf_unx.h" ) CONFIG_HEADERS="$CONFIG_HEADERS conf_unx.h" ;;
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;} echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
{ (exit 1); exit 1; }; };; { (exit 1); exit 1; }; };;

View File

@ -1,7 +1,7 @@
AC_PREREQ(2.53) AC_PREREQ(2.53)
AC_INIT([ase], [deb-0.1.0]) AC_INIT([ase], [deb-0.1.0])
AC_REVISION([$Revision: 1.71 $]) AC_REVISION([$Revision: 1.72 $])
AC_CONFIG_HEADER([config.h]) AC_CONFIG_HEADER([conf_unx.h])
# Checks for programs. # Checks for programs.
AC_PROG_CXX AC_PROG_CXX

View File

@ -1,5 +1,5 @@
/* /*
* $Id: types.h,v 1.59 2006-11-15 05:49:22 bacon Exp $ * $Id: types.h,v 1.60 2006-11-19 08:01:45 bacon Exp $
*/ */
#ifndef _ASE_TYPES_H_ #ifndef _ASE_TYPES_H_
@ -11,8 +11,10 @@
#include <ase/conf_vms.h> #include <ase/conf_vms.h>
#elif defined(__MSDOS__) || defined(_MSDOS) || defined(MSDOS) #elif defined(__MSDOS__) || defined(_MSDOS) || defined(MSDOS)
#include <ase/conf_dos.h> #include <ase/conf_dos.h>
#else #elif defined(__unix__) || defined(__unix)
#include <ase/config.h> #include <ase/conf_unx.h>
#elif
#error unsupport operating system
#endif #endif
/* boolean type */ /* boolean type */