== Linux ==

Removing the stub I added for a binreloc function. Here for some reason it's needed (somehow binreloc is not being included ?) or the player won't link, but for others (at least on 64 bit systems) the opposite happens.

Thanks Chris Want for the feedback to the commit where I tested this.
This commit is contained in:
Willian Padovani Germano
2008-02-15 12:41:27 +00:00
parent 0ef89331e2
commit 113b684e07
2 changed files with 0 additions and 13 deletions

View File

@@ -238,10 +238,5 @@ void PE_free_particle_edit(struct ParticleSystem *psys);
void PE_get_colors(char sel[4], char nosel[4]);
void PE_recalc_world_cos(struct Object *ob, struct ParticleSystem *psys);
/* only for linux binreloc */
#ifdef __linux__
char *zLhm65070058860608_br_find_exe(const char *default_exe);
#endif
#endif

View File

@@ -352,11 +352,3 @@ void harmonic_coordinates_bind(struct MeshDeformModifierData *mmd,
void PE_free_particle_edit(struct ParticleSystem *psys) {}
void PE_get_colors(char sel[4], char nosel[4]) {}
void PE_recalc_world_cos(struct Object *ob, struct ParticleSystem *psys) {}
/* binreloc */
#ifdef __linux__
char *zLhm65070058860608_br_find_exe(const char *default_exe)
{
return 0;
}
#endif