Develop and Download Open Source Software

Browse CVS Repository

/[OSDN]/freewnn/FreeWnn/config.h.in

Log of /freewnn/FreeWnn/config.h.in

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Links to HEAD: (view) (download) (annotate)
Sticky Tag:

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Thu Aug 1 18:43:07 2013 UTC (10 years, 8 months ago) by aonoto
Branch: MAIN
CVS Tags: HEAD, freewnn-1-1-1-a022, freewnn-1-1-1-a022I002, freewnn-1-1-1-a023, freewnn-1-1-1-a023-1
Branch point for: freewnn-1-1-1-a022I001
Changes since 1.28: +0 -3 lines
Diff to previous 1.28
- libutil is (may be) used only in uum, so separate this library
  (if exists) from normal LIBS.
  Patch by 1xx (itsango at gmail.com) ([freewnn-users 126]) with some modification.

- Fixed spelling in configure.in .


Revision 1.28 - (view) (download) (annotate) - [selected]
Sun Apr 25 10:38:55 2010 UTC (13 years, 11 months ago) by aonoto
Branch: MAIN
Changes since 1.27: +0 -3 lines
Diff to previous 1.27
configure.in, configure:
  - Added -D_GNU_SOURCE for architecture with GNU libc and non-Linux kernel
    (especially for Debian). Possible fix for Debian Bug #577097.
  - Cosmetic fix (for configure.in).

config.h.in:
  - Forgot to autoheader on last commit of configure.in.


Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Mon Sep 25 17:31:35 2006 UTC (17 years, 6 months ago) by aonoto
Branch: MAIN
Changes since 1.26: +3 -0 lines
Diff to previous 1.26 , to selected 1.28
Use posix_openpt() (if it and ptsname() exists) when opening tty.
Traditional pts system (that doesn't have posix_openpt()) fallback to
dummy function opening /dev/ptmx directly. Getting tty without setting
setuid root works in non-pts systems that have posix-compatible
pty functions (ex. recent FreeBSD).

Other changes to configure.in:
- Remove (already commented out) default case in system specific part.
- Commented out useless AC_DEFINE in term library detection part.


Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Mon Aug 21 17:31:05 2006 UTC (17 years, 7 months ago) by aonoto
Branch: MAIN
Changes since 1.25: +3 -0 lines
Diff to previous 1.25 , to selected 1.28
Added configure test for setsid(). (I forgot it.)


Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Sun Jul 23 17:30:33 2006 UTC (17 years, 8 months ago) by aonoto
Branch: MAIN
Changes since 1.24: +3 -0 lines
Diff to previous 1.24 , to selected 1.28
More utmp fix:

- Fix build (more) correctly on recent NetBSD (that both have utmpx &
  traditional utmp)
- Moved setutmp() call from child to parent process (not sure if this is
  right thing)


Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Sun Jun 18 16:49:41 2006 UTC (17 years, 9 months ago) by aonoto
Branch: MAIN
Changes since 1.23: +15 -0 lines
Diff to previous 1.23 , to selected 1.28
Rewrote utmp code in uum (without libspt).
Recent BSD (4.4BSD or later based) developer: please write working
code specifying --enable-client-utmp . It works well (with
--enable-client-utmp) on recent NetBSD (that has putut(x)line()
implementation).

Other changes:
Because it cannot work on gcc with Linux/i386, temporally remove
-fstack-check from CDEBUGFLAGS if you specify --enable-debug
(and you're using gcc).


Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Sat Mar 4 19:01:45 2006 UTC (18 years, 1 month ago) by aonoto
Branch: MAIN
Changes since 1.22: +24 -0 lines
Diff to previous 1.22 , to selected 1.28
Long awaited merge of uum-related patch (based on hiroo's work
in November, 2003)

- Detect termcap / terminfo, curses etc. automatically (from canuum)
  But, configure support of libspt does not implemented / does not
  include Canna support / utmp implementation does not work correctly.
- pty / pts processing (from Kabe). Auto detection in configure by hiroo.
- Some modification due to build error in my environment.
- (As usual) stripping old address / adding lines in case
  if builddir != srcdir .

Many thanks to AIDA shinra, Taketo Kabe @ SRA Tohoku, hiroo,
kouji at hiroshima-u.ac.jp (original author of Kabe's patch).


Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Sun Nov 27 17:30:23 2005 UTC (18 years, 4 months ago) by aonoto
Branch: MAIN
CVS Tags: freewnn-1-1-1-a021
Changes since 1.21: +0 -3 lines
Diff to previous 1.21 , to selected 1.28
- Added -D_GNU_SOURCE to CCOPTIONS if linux. Merged from Gentoo portage,
  but discussion began in wnn-users ML ([wnn-users 1035]).
  Thanks to MATSUU Takuto.
  (Some (ancient?) Linux users may get some problems on building.
  Please report us if it occurs.)
- Changed library searching method of crypt() (to AC_SEARCH_LIBS).
  Maybe useful for systems that have crypt() on both libc and libcrypt
  (i.e. Solaris).
- Use $(top_builddir) to *WNNJLIB / HINSI_DATA (instead of
  *WNNJLIB / WNNJDSRC) by default. Useful if builddir != srcdir,
  but it doesn't break normal configurations.
- Some cosmetic change. (Also stripped old mail address.)


Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Fri May 21 16:39:31 2004 UTC (19 years, 10 months ago) by aono
Branch: MAIN
Changes since 1.20: +1 -1 lines
Diff to previous 1.20 , to selected 1.28
Commit from my work area part 2. (Bit large ...)

Rewrote configure part of libwrap support:

- By default, configure finds if libwrap is installed.
- Do AC_TRY_LINK() on both $withval=yes and $withval=PATH case.
  (AC_CHECK_LIB() fails against original TCP wrapper ...)
- HAVE_LIBWRAP are defined in config.h.in, so remove "-DHAVE_LIBWRAP"
    from CFLAGS.
- Changed WRAPLIBS -> WRAPLIB .
- Add WRAPLIB on [kc]Wnn . Also add --mode=XXX to LIBTOOL lines.

Other changes:

- (configure) Running generated script by autoconf-2.53 (that we are
  using) fails on some Bourne shell family (lack of LINENO support.
  ex. FreeBSD). Add code to clear default --with-tag (Libtool issue?).
- (configure) Add -no-cpp-precomp on Darwin only if you are using gcc.
  (But I don't know other compilers running on Darwin.)
- (configure) Use $ac_install_sh to mkdir Contrib/dic/gerodic .
- (do_env.c) Convert non-printable character for logging on JS_OPEN /
  JS_CONNECT. Partial fix of Bugtraq id 7918 ([freewnn:01002]).
  Please don't install jserver as setuid *root* ... (^^;)
- (revdic.c) Fix compiler warnings.
- (some Makefiles) Some lines changed to build correctly if
  builddir != srcdir. (I think this don't break normal build.)


Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Sun Jun 8 03:09:46 2003 UTC (20 years, 10 months ago) by hiroo
Branch: MAIN
Changes since 1.19: +24 -6 lines
Diff to previous 1.19 , to selected 1.28
* configure.in:
	add utmpx.h check.
	comment out time_t checking. It does not work well.
	add getgpid, getgprp check for uum.
	add libwrap support (by S.Motoki [freewnn:0032]).
* configure, config.h.in: regenerate.
* Wnn/include/wnn_os.h:
	move FD_SET and related macro here.
	I still wonder if we need this at all.
* Wnn/jserver/de.c
	use TIME_WITH_SYS_TIME according to the info of autoconf.
	move FD_SET and related macro to wnn_os.h.
	add libwrap support (by S.Motoki [freewnn:0032]).
* Wnn/jserver/error.c
	use TIME_WITH_SYS_TIME according to the info of autoconf.


Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Wed Jun 4 14:05:21 2003 UTC (20 years, 10 months ago) by hiroo
Branch: MAIN
Changes since 1.18: +13 -17 lines
Diff to previous 1.18 , to selected 1.28
* configure.in: Darwin support by Mr.Aono.
	Use newer AC_CHECK_TYPES usage.
* config.h.in, configure: regenerate.
* acconfig.h: Remove according to the new usage of AC_DEFINE.


Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Sun Sep 1 17:48:22 2002 UTC (21 years, 7 months ago) by hiroo
Branch: MAIN
CVS Tags: freewnn-1-1-1-a020
Changes since 1.17: +4 -1 lines
Diff to previous 1.17 , to selected 1.28
configure.in: added check for FD_SET() and AC_HEADER_TIME.
configure: regenerate.
config.h.in: regenerate.


Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Sat Jun 22 13:15:25 2002 UTC (21 years, 9 months ago) by hiroo
Branch: MAIN
Changes since 1.16: +4 -4 lines
Diff to previous 1.16 , to selected 1.28
acconfig.h:
 * Remove HAVE_RAND_MAX, which is superfluous.
configure.in:
 * Remove HAVE_RAND_MAX, which is superfluous.
 * check `random()'.
configure, config.h.in:
 * Regenerate.


Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Mon Jun 17 17:28:52 2002 UTC (21 years, 9 months ago) by hiroo
Branch: MAIN
Changes since 1.15: +3 -3 lines
Diff to previous 1.15 , to selected 1.28
configure.in:
 * Passes autoconf 2.13 again. cf.[freewnn:00872]
 * look for getopt().
Wnn/include/wnn_os.h:
 * forgot to put #endif. cf.[freewnn:00874]
Wnn/jlib/getopt.c:
 * Only used when getopt() does not exist. cf.[freewnn:00874]
config.h.in, configure:
 * Regenerate (GNU Autoconf 2.53).


Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Sat Jun 15 13:02:13 2002 UTC (21 years, 10 months ago) by hiroo
Branch: MAIN
Changes since 1.14: +4 -1 lines
Diff to previous 1.14 , to selected 1.28
configure.in:
 * Add getdtablesize() check.
config.h.in, configure:
 * regenerate (GNU Autoconf 2.53)
Wnn/include/wnn_os.h:
 * bzero/memset, strchr/index strrchr/rindex glue.
 * SIGNALRETURNSINT replaced by RETSIGTYPE and RETSIGTYPE_VOID.
 * Newly define WNN_NFD for temporal file descriptor number hack.
Wnn/jlib/getopt.c, jl.c, js.c:
Wnn/jserver/initjserv.c:
Wnn/romkan/rk_header.h:
 * Include config.h and wnn_os.h if not, and get rid of BSD42 macro.
Wnn/jserver/de.c:
 * Use WNN_NFD for temporal file descriptor number hack.
Wnn/jserver/de_header.h, error.c:
Wnn/uum/jhlp.c:
 * Replace to RETSIGTYPE and RETSIGTYPE_VOID.
 * Use WNN_NFD for temporal file descriptor number hack.
Wnn/uum/sheader.h:
 * A trivial change in comment.


Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Sat Jun 15 10:19:27 2002 UTC (21 years, 10 months ago) by hiroo
Branch: MAIN
Changes since 1.13: +54 -10 lines
Diff to previous 1.13 , to selected 1.28
acconfig.h:
 * Added RETSIGTYPE_VOID hack taken from EB Library
   <URI:http://www.sra.co.jp/people/m-kasahr/eb/>.
 * Small cosmetic changes.
configure.in:
 * Removed -DCSRG_BASED for CCOPTIONS of *BSD.
 * Aggregated AC_CHECK_HEADERS and AC_CHECK_FUNCS parameter to reduce the
   size of configure a little.
 * Cosmetic change in AC_CHECK_TYPES usage.
 * Added RETSIGTYPE_VOID hack taken from EB Library.
 * Suppress Makefile generation for each language when they are disabled.
config.h.in, configure: regenerate. (GNU Autoconf 2.53)


Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Sun May 12 01:01:46 2002 UTC (21 years, 11 months ago) by hiroo
Branch: MAIN
Changes since 1.12: +9 -0 lines
Diff to previous 1.12 , to selected 1.28
* Check for bcopy/bzero/bcmp
* Remove `register'


Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Wed May 1 20:27:16 2002 UTC (21 years, 11 months ago) by hiroo
Branch: MAIN
Changes since 1.11: +110 -66 lines
Diff to previous 1.11 , to selected 1.28
Add existence check for functions not in C89, POSIX 1 or 2.
* Check for syslog() and syslog.h.
* Check for setenv().


Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Sat Mar 30 02:35:20 2002 UTC (22 years ago) by hiroo
Branch: MAIN
Changes since 1.10: +3 -3 lines
Diff to previous 1.10 , to selected 1.28
Remove limits.h check. It is included in STDC_HEADERS.
Add memory.h check for bcopy/memmove, strchr/index issue to be done in the future.


Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Thu Mar 21 04:32:23 2002 UTC (22 years ago) by hiroo
Branch: MAIN
Changes since 1.9: +3 -0 lines
Diff to previous 1.9 , to selected 1.28
add fchmod() existence check.


Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Sat Mar 9 16:50:31 2002 UTC (22 years, 1 month ago) by aono
Branch: MAIN
Changes since 1.8: +6 -0 lines
Diff to previous 1.8 , to selected 1.28
Commit rest of my error.c rewrite. see [freewnn:00772].
Source code is changed much to match with current source policy.
Extentions to log mechanism (ex. introduce debug-level) are welcome.

Note: log_err() send messages to syslog (LOG_ERR, facility not defined (^^;)
      if -s options is *not* used. Currently it isn't used anywhere.


Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Sun Sep 16 11:35:57 2001 UTC (22 years, 7 months ago) by hiroo
Branch: MAIN
Changes since 1.7: +9 -3 lines
Diff to previous 1.7 , to selected 1.28
Fixed some comment descriptions.
--enable-ipv6, --enable-unsafe-path, --enable-debug options, etc.


Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Tue Aug 14 13:43:20 2001 UTC (22 years, 8 months ago) by hiroo
Branch: MAIN
Changes since 1.6: +3 -0 lines
Diff to previous 1.6 , to selected 1.28
IPv6+CPP patch [freewnn:00673] Katsuomi Hamajima, Tomoki Aono
beos patch for configure.in [freewnn:00677] Hiroaki Abe
libtoolized by libtool-1.4


Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Mon Jun 18 09:09:20 2001 UTC (22 years, 9 months ago) by ura
Branch: MAIN
CVS Tags: freewnn-1-1-1-a018
Changes since 1.5: +97 -54 lines
Diff to previous 1.5 , to selected 1.28
FreeWnn-1.1.1-a018 is released.


Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Thu Jun 14 18:28:51 2001 UTC (22 years, 10 months ago) by ura
Branch: MAIN
CVS Tags: freewnn-1-1-1-a017
Changes since 1.4: +13 -2 lines
Diff to previous 1.4 , to selected 1.28
FreeWnn-1.1.1-a017 is released.


Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Thu Jun 14 17:55:29 2001 UTC (22 years, 10 months ago) by ura
Branch: MAIN
CVS Tags: freewnn-1-1-1-a014, freewnn-1-1-1-a015, freewnn-1-1-1-a016
Changes since 1.3: +30 -1 lines
Diff to previous 1.3 , to selected 1.28
FreeWnn-1.1.1-a014 is released.


Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Sun Jan 16 07:34:04 2000 UTC (24 years, 3 months ago) by ura
Branch: MAIN
CVS Tags: freewnn-1-1-1-a013
Changes since 1.2: +5 -0 lines
Diff to previous 1.2 , to selected 1.28
FreeWnn-1.1.1-a013 is released.


Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Sun Jan 16 07:30:00 2000 UTC (24 years, 3 months ago) by ura
Branch: MAIN
CVS Tags: freewnn-1-1-1-a012
Changes since 1.1: +19 -0 lines
Diff to previous 1.1 , to selected 1.28
FreeWnn-1.1.1-a012 is released.


Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Sun Jan 16 06:37:12 2000 UTC (24 years, 3 months ago) by ura
Branch: MAIN
CVS Tags: freewnn-1-1-1-a004, freewnn-1-1-1-a005, freewnn-1-1-1-a006, freewnn-1-1-1-a007, freewnn-1-1-1-a008, freewnn-1-1-1-a009, freewnn-1-1-1-a010, freewnn-1-1-1-a011
Diff to selected 1.28
FreeWnn-1.1.1-a004 is released.


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26