~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/ha_innodb.cc

  • Committer: rm
  • Date: 2009-07-26 03:10:33 UTC
  • mto: (1099.1.2 pandora-build)
  • mto: This revision was merged to the branch mainline in revision 1101.
  • Revision ID: rm@ralph.local-20090726031033-ajeunv3e198izefa
get things compiling on FreeBSD (7.1)
  - add PTHREAD_LIBS to the necessary execs
  - quell warning about NULL format string in die
  - check for log and log2 funcs, work-around for missing log2
  - add -D option to gperf to avoid warnings/errors about hash collisions
  - remove const from getopt wrappers to avoid errors about discarded qualifiers
  - fix bug in acx_pthread.m4, add pthread ld flags to PTHREAD_LIBS, not
    PTHREAD_CFLAGS
  - wrap #include <alloca.h> in HAVE_ALLOCA_H
  - add lots of UNIV_INTERN attributes to handler func decls
  - include missing header files (net-realted) in a couple places

Show diffs side-by-side

added added

removed removed

Lines of Context:
352
352
        return(ha_innobase_exts);
353
353
  }
354
354
 
355
 
  int createTableImpl(Session *session, const char *table_name, Table *form,
 
355
  UNIV_INTERN int createTableImpl(Session *session, const char *table_name, Table *form,
356
356
                      HA_CREATE_INFO *create_info);
357
 
  int renameTableImpl(Session* session, const char* from, const char* to);
358
 
  int deleteTableImpl(Session* session, const string table_path);
 
357
  UNIV_INTERN int renameTableImpl(Session* session, const char* from, const char* to);
 
358
  UNIV_INTERN int deleteTableImpl(Session* session, const string table_path);
359
359
};
360
360
 
361
361
/****************************************************************